home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Light ROM 3
/
Light ROM 3 - Disc 2.iso
/
programs
/
pc
/
l_parser
/
lparser3.exe
/
MUTATE.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-12-08
|
813b
|
41 lines
@echo off
rem --- L-System Parser/Mutator --- Lj Lapre -------------------------------
rem
rem Exec 'mutate ls-file' (without .ls extension!) to get multiple mutations
rem in an evolutionary chain. Each round one mutation is added to the ls-file.
rem
rem Try 'mutate lsys00'
rem
rem Mother
rem │
rem Child
rem │
rem Child
rem │
rem Child
rem │
rem Etc.
rem
rem The form on the screen will be stored in the file mutation.ls.
rem
rem The -s500 option is to limit the size off the l-string to 500K.
rem The -p50000 option is to limit the size off the form to 50000 polygons.
rem
rem The mother
lparser %1
lviewer -f output
rem The Children
copy %1.ls mutation.ls
:begin
lparser -s500 -p50000 -u1 mutation
lviewer -f output
goto begin